home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / email / MIMENonMultipart.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  813b  |  17 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. '''Base class for MIME type messages that are not multipart.'''
  5. from email import Errors
  6. from email import MIMEBase
  7.  
  8. class MIMENonMultipart(MIMEBase.MIMEBase):
  9.     '''Base class for MIME multipart/* type messages.'''
  10.     __pychecker__ = 'unusednames=payload'
  11.     
  12.     def attach(self, payload):
  13.         raise Errors.MultipartConversionError('Cannot attach additional subparts to non-multipart/*')
  14.  
  15.     del __pychecker__
  16.  
  17.